594662cc9d754ba5e344160420e30e51e9bde712,gdx/src/com/badlogic/gdx/scenes/scene2d/Stage.java,Stage,act,#,158

Before Change



	/** Calls {@link #act(float)} with {@link Graphics#getDeltaTime()}. */
	public void act () {
		act(Gdx.graphics.getDeltaTime());
	}

	/** Calls the {@link Actor#act(float)} method on each actor in the stage. Typically called each frame. This method also fires

After Change



	/** Calls {@link #act(float)} with {@link Graphics#getDeltaTime()}. */
	public void act () {
		act(Math.min(Gdx.graphics.getDeltaTime(), 1 / 30f));
	}

	/** Calls the {@link Actor#act(float)} method on each actor in the stage. Typically called each frame. This method also fires